From 733567a41a7af5cc606dad6225b89a280dc117de Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Mon, 20 Nov 2006 20:56:14 +0000 Subject: [PATCH] (concat) [!__GNUC__]: Add prototype. --- src/fns.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/fns.c b/src/fns.c index 507bf229e47..3aa8cf4f6b4 100644 --- a/src/fns.c +++ b/src/fns.c @@ -392,6 +392,8 @@ Symbols are also allowed; their print names are used instead. */) the arguments for the invocations of this function, whereas it expects these values on the stack. */ static Lisp_Object concat () __attribute__((noinline)); +#else /* !__GNUC__ */ +static Lisp_Object concat (); #endif /* ARGSUSED */ -- 2.30.2